home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19970326-19970626 / 000203_news@newsmaster….columbia.edu _Sat May 17 10:15:19 1997.msg < prev    next >
Internet Message Format  |  2020-01-01  |  4KB

  1. Return-Path: <news@newsmaster.cc.columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id KAA23176
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Sat, 17 May 1997 10:15:19 -0400 (EDT)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id KAA03843
  7.     for kermit.misc@watsun; Sat, 17 May 1997 10:15:18 -0400 (EDT)
  8. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Newsgroups: comp.protocols.kermit.misc
  11. Subject: Re: problems w/ c-kermit file transfer
  12. Date: 17 May 1997 14:15:17 GMT
  13. Organization: Columbia University
  14. Lines: 64
  15. Message-ID: <5lkehl$3o1$1@newsmaster.cc.columbia.edu>
  16. References: <MPG.de623a660d0360c989697@news.accessone.com>
  17. NNTP-Posting-Host: watsun.cc.columbia.edu
  18. Xref: news.columbia.edu comp.protocols.kermit.misc:7039
  19.  
  20. In article <MPG.de623a660d0360c989697@news.accessone.com>,
  21.  <poetryman@writeme.com> wrote:
  22. : I use ckermit to do file transfers between a creaky old VAX and several
  23. : VAXes and ALPHAs around North America. I've always been able to tweak the
  24. : configurations of each to where my file transfers were successful, 
  25. : However, there is one site to which attemped transfers simply won't work
  26. : when using ckermit. I can acheive the same transfer between the same 2
  27. : computers using an older version of kermit and using WRQ's Reflection
  28. : protocol. 
  29. : My employer has directed me to make it work at this one site, rather than
  30. : to use the alternate file transfer methods that do work.
  31. : Any ideas on how to make this succeed? Since my outbound e-mail is 
  32. : unreliable, I'd prefer to keep the discussion of this problem here in the 
  33. : newsgroup.
  34. : Which VMS versions in use?
  35. : On the remote computer (mine) VMS 6.2
  36. : On the host computer (to which I'm sending files) VMS 5.5-2
  37. : this is a very common VMS version for my clients, and all of the other 
  38. : sites work ok with ckermit transfers from my VAX.
  39. : Which version of C-Kermit?  
  40. : 5A(188) on each; the hosts use a copy of mine.
  41. The current version is 6.0:
  42.  
  43.   http://www.columbia.edu/kermit/ck60.html
  44.  
  45. : What kind of file is it?
  46. : binary
  47. So it probably contains 8-bit data.
  48.  
  49. : Symptoms?
  50. : S%T%T%T%...T%
  51. : "?Too Many Retries" 
  52. : [at that point it times out & returns me to the prompt on the station 
  53. : from which I am sending)
  54. : (remember: I can accomplish this transmittal using the same 
  55. : computers/phone lines/modem, but different software, or the same 
  56. : lines/modem and a pc-vax connection with different software)
  57. : Text of PACKET.LOG?
  58. : s-00-00-_0 S~4 @-#Y3~N*%DS
  59. : r-224-03-<crunched:seq>
  60. This indicates that an invalid sequence number, 224, was received (63 is
  61. the maximum possible sequence number).  You evidently have a very basic
  62. communication problem; something is seriously corrupting the packets coming
  63. from the file receiver.  I would be tempted to say, try "set parity space",
  64. but I think the problem is more serious than that.  The first packet should
  65. have a sequence number of 0, but 224 is nowhere near 0+parity.  You either
  66. have an EXTREMELY noisy connection, a massive failure of flow control, or
  67. both, and possibly also the addition of parity and maybe also an echo back
  68. from the modem.
  69.  
  70. Try the transfer again, but this time with "log debug".  Then send the
  71. debug.log file to kermit-support@columbia.edu.
  72.  
  73. - Frank